home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / COMPNENT / CCS32 / CCS32.ZIP / CSFPHIST.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-25  |  373b  |  27 lines

  1. unit CSFPHist;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls;
  8.  
  9. type
  10.   THistForm = class(TForm)
  11.     Memo1: TMemo;
  12.     Label1: TLabel;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   HistForm: THistForm;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.